testing.common.lastRaceErrors (field)

9 uses

	testing (current package)
		testing.go#L658: 	lastRaceErrors  atomic.Int64 // Max value of race.Errors seen during the test or its subtests.
		testing.go#L998: 	if !c.done && int64(race.Errors()) > c.lastRaceErrors.Load() {
		testing.go#L1456: 		c.lastRaceErrors.Store(int64(race.Errors()))
		testing.go#L1458: 		c.lastRaceErrors.Store(c.parent.checkRaces())
		testing.go#L1475: 		last := c.lastRaceErrors.Load()
		testing.go#L1480: 		if c.lastRaceErrors.CompareAndSwap(last, raceErrors) {
		testing.go#L1497: 			last := parent.lastRaceErrors.Load()
		testing.go#L1502: 			if parent.lastRaceErrors.CompareAndSwap(last, raceErrors) {
		testing.go#L1593: 	t.lastRaceErrors.Store(int64(race.Errors()))